9cbd7c
@@ -116,7 +116,17 @@
public class Main extends MainSupport {
             throw new IllegalStateException("Error creating CamelContext");
         }
     }
-    
+
+    /**
+     * A list of locations to load properties. You can use comma to separate multiple locations.
+     * This option will override any default locations and only use the locations from this option.
+     */
+    public void setPropertyPlaceholderLocations(String location) {
+        PropertiesComponent pc = new PropertiesComponent();
+        pc.setLocation(location);
+        bind("properties", pc);
+    }
+
     // Implementation methods
     // -------------------------------------------------------------------------
 
@@ -175,13 +185,4 @@
public class Main extends MainSupport {
         return new DefaultCamelContext();
     }
 
-    /**
-     * A list of locations to load properties. You can use comma to separate multiple locations.
-     * This option will override any default locations and only use the locations from this option.
-     */
-    protected void setPropertyPlaceholderLocations(String location) {
-        PropertiesComponent pc = new PropertiesComponent();
-        pc.setLocation(location);
-        bind("properties", pc);
-    }
 }
